home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / SHARE / prog / POVRAY / LNSEFCTS.ZIP / GLOWS.POV < prev    next >
Encoding:
Text File  |  1997-07-18  |  1.4 KB  |  51 lines

  1. // LENS EFFECTS: GLOW COMPONENTS
  2. // *****************************
  3. // This scene illustrates the 8 different types of glows included
  4. // with the Lens Effects Include File.  These are numbered from
  5. // left to right, starting at the top-left corner, ie:
  6. //
  7. //     1   2   3   4
  8. //     5   6   7   8
  9. //
  10. // Note that the glows have been scaled to 75% of normal size to
  11. // fit them all in one image.
  12.  
  13. // CAMERA AND EFFECT OPTIONS
  14.    #declare camera_location = <0, 0, -12>
  15.    #declare camera_look_at = <0, 0, 0>
  16.    #declare effect_scale = .75
  17.  
  18.    global_settings {max_trace_level 10}
  19.  
  20. // GLOW TYPE 1
  21.    #declare glow_type = 1
  22.    #declare effect_location = <-6, 2, 0> #include "LNSEFCTS.INC"
  23.  
  24. // GLOW TYPE 2
  25.    #declare glow_type = 2
  26.    #declare effect_location = <-2, 2, 0> #include "LNSEFCTS.INC"
  27.  
  28. // GLOW TYPE 3
  29.    #declare glow_type = 3
  30.    #declare effect_location = <2, 2, 0> #include "LNSEFCTS.INC"
  31.  
  32. // GLOW TYPE 4
  33.    #declare glow_type = 4
  34.    #declare effect_location = <6, 2, 0> #include "LNSEFCTS.INC"
  35.  
  36. // GLOW TYPE 5
  37.    #declare glow_type = 5
  38.    #declare effect_location = <-6, -2, 0> #include "LNSEFCTS.INC"
  39.  
  40. // GLOW TYPE 6
  41.    #declare glow_type = 6
  42.    #declare effect_location = <-2, -2, 0> #include "LNSEFCTS.INC"
  43.  
  44. // GLOW TYPE 7
  45.    #declare glow_type = 7
  46.    #declare effect_location = <2, -2, 0> #include "LNSEFCTS.INC"
  47.  
  48. // GLOW TYPE 8
  49.    #declare glow_type = 8
  50.    #declare effect_location = <6, -2, 0> #include "LNSEFCTS.INC"
  51.